home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Apple Development Tools / MacsBug 6.5.4a6.sit / MacsBug 6.5.4a6 / Building dcmds / dcmd Includes / Put.h < prev    next >
Text File  |  1998-09-22  |  1KB  |  58 lines

  1. /*
  2.     File:        put.h
  3.  
  4.     Contains:    This is a set of formatting routines for use by dcmds.
  5.  
  6.     Version:    6.5.x
  7.  
  8.     Copyright:    © 1988, 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Jim Murphy
  13.  
  14.         Other Contact:        Dave Lyons
  15.  
  16.         Technology:            MacsBug
  17.  
  18.     Writers:
  19.  
  20.         (JL)    Jim Luther
  21.         (JM3)    Jim Murphy
  22.         (sad)    Scott Douglass
  23.  
  24.     Change History (most recent first):
  25.  
  26.          <3>    11/12/97    JL        Added PutMemoryLine.
  27.          <2>     10/1/97    JM3        Removed the unimplemented PutInit. Updated PutPStrTruncTo,
  28.                                     PutPStrTo, PutPStr to require ConstStr255Params so as to be more
  29.                                     correct. Changed a bunch of stuff to UInt16 or UInt32. Shouldn't
  30.                                     be noticed by anyone.
  31. */
  32.  
  33.  
  34. #ifndef __put__
  35. #define __put__
  36.  
  37. void PutLine();
  38. void PutChar(char c);
  39. void PutSpace();
  40. void PutSpacesTo(int pos);
  41. void PutBytesTruncTo(const char* s, int len, int endpos);
  42. void PutBytesTo(const char* s, int len, int endpos);
  43. void PutCStrTruncTo(const char* s, int endpos);
  44. void PutCStrTo(const char* s, int endpos);
  45. void PutCStr(const char* s);
  46. void PutPStrTruncTo(ConstStr255Param s, int endpos);
  47. void PutPStrTo(ConstStr255Param s, int endpos);
  48. void PutPStr(ConstStr255Param s);
  49. void PutUHexZTo(UInt32 i, int nz, int pos);
  50. void PutUHexZ(UInt32 i, int nz);
  51. void PutUHexWord(UInt16 h);
  52. void PutUDecTo(UInt32 i, int endpos);
  53. void PutUDec(UInt32 i);
  54. void PutOSType(UInt32 typ);
  55. void PutMemoryLine(Ptr address);
  56.  
  57. #endif
  58.